encoding/hex.decoder.err (field)
8 uses
encoding/hex (current package)
hex.go#L195: err error
hex.go#L208: if len(d.in) < 2 && d.err == nil {
hex.go#L211: numRead, d.err = d.r.Read(d.arr[numCopy:])
hex.go#L213: if d.err == io.EOF && len(d.in)%2 != 0 {
hex.go#L216: d.err = InvalidByteError(d.in[len(d.in)-1])
hex.go#L218: d.err = io.ErrUnexpectedEOF
hex.go#L230: d.in, d.err = nil, err // Decode error; discard input remainder
hex.go#L234: return numDec, d.err // Only expose errors when buffer fully consumed
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |